home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / progtool / c / sozobon / sozlib15.zoo / sozdistr / examples / makefile < prev    next >
Makefile  |  1995-04-02  |  234b  |  18 lines

  1. #!make -f
  2. # @(#)makefile, SozobonX examples
  3. #
  4. # make file for 'hello' and 'world', in SozobonX distribution
  5. #
  6.  
  7.  
  8. hello:
  9.     $(MAKE) $(MAKEFLAGS) -f hello.mk
  10.  
  11. world: 
  12.     $(MAKE) $(MAKEFLAGS) -f world.mk
  13.  
  14.  
  15.  
  16. help:
  17.     @%echo targets: hello world
  18.